home *** CD-ROM | disk | FTP | other *** search
- ' Create Menu Version 1.00
- ' SIMS (c) David Thomas Stewart 1984-1987
- ' Distributed by Synergy Development - THIS PROGRAM IS PUBLIC DOMAIN
-
- screen(n)
-
- normal
- foreground(white+)
- background(red)
- setdate
- settime
-
- date(2,9)
- time(65,9)
- argue(25,20,40)
-
- normal
- foreground(green)
- setattr
-
- box(0,0)-(79,24),"║"
- fill(1,0),"═",78
- fill(1,24),"═",78
- fill(1,8),"─",78
- fill(1,10),"─",78
- .(0,0)"╔"
- .(0,24)"╚"
- .(79,0)"╗"
- .(79,24)"╝"
- .(0,8)"╟"
- .(79,8)"╢"
- .(0,10)"╟"
- .(79,10)"╢"
-
- foreground(white+)
- background(blue)
- setattr
- .(29,9)" Create Demo Version 1.00 "
-
- normal
- foreground(yellow)
- setattr
- .(15,2)"████▒ ████▒ ████▒ ████▒ ██████▒ ████▒"
- .(15,3)"█▒ █▒ █▒ █▒ █▒ █▒ █▒ █▒"
- .(15,4)"█▒ ████▒ ████▒ ████▒ █▒ ████▒"
- .(15,5)"█▒ █▒ ██▒ █▒ █▒ █▒ █▒ █▒"
- .(15,6)"████▒ █▒ █▒ ████▒ █▒ █▒ █▒ ████▒"
-
- option start
- option(F1,11,13)" F1 - Edit Menu Source File ","\COMMAND.COM/C EDLIN ",argue,clear,noclock
- option(F2,44,13)" F2 - MAKEMENU (Convert) Menu ","MAKEMENU.EXE"
- option(F3,11,14)" F3 - Try out USER Menu ","MENU USER"
- option(F4,44,14)" F4 - Return to DEMO Menu ","MENU DEMO"
- option end
-
- border(grey)
-
- normal
- foreground(cyan)
- setattr
-
- proc(F1,select)
- fill(1,17)," ",78
- .(18,17)"Edit Menu Source File"
- proc end
-
- proc(F2,select)
- fill(1,17)," ",78
- .(18,17)"MAKEMENU (Convert) Menu"
- proc end
-
- proc(F3,select)
- fill(1,17)," ",78
- .(18,17)"Try out USER Menu"
- proc end
-
- proc(F4,select)
- fill(1,17)," ",78
- .(18,17)"Return to DEMO Menu"
- proc end
-
- proc(F1,exec)
- inverse
- setattr
- setargue
- .(7,20)"Menu Source File >"
- proc end
-
- proc(F2,exec)
- invisible
- setdate
- settime
- time(65,0)
- normal
- setattr
- field(0,0)-(79,24)
- foreground(white+)
- background(blue)
- settime
- proc end
-
- end